net/http.http2http2Config.MaxReadFrameSize (field)

13 uses

	net/http (current package)
		h2_bundle.go#L1057: 	MaxReadFrameSize             uint32
		h2_bundle.go#L1074: 		MaxReadFrameSize:             h2.MaxReadFrameSize,
		h2_bundle.go#L1094: 		MaxReadFrameSize:          h2.MaxReadFrameSize,
		h2_bundle.go#L1102: 	if conf.MaxReadFrameSize < http2minMaxFrameSize {
		h2_bundle.go#L1103: 		conf.MaxReadFrameSize = http2minMaxFrameSize
		h2_bundle.go#L1104: 	} else if conf.MaxReadFrameSize > http2maxFrameSize {
		h2_bundle.go#L1105: 		conf.MaxReadFrameSize = http2maxFrameSize
		h2_bundle.go#L1135: 	http2setDefault(&conf.MaxReadFrameSize, http2minMaxFrameSize, http2maxFrameSize, http2defaultMaxReadFrameSize)
		h2_bundle.go#L1176: 		conf.MaxReadFrameSize = uint32(h2.MaxReadFrameSize)
		h2_bundle.go#L4544: 	fr.SetMaxReadFrameSize(conf.MaxReadFrameSize)
		h2_bundle.go#L4987: 		{http2SettingMaxFrameSize, conf.MaxReadFrameSize},
		h2_bundle.go#L8289: 	cc.fr.SetMaxReadFrameSize(conf.MaxReadFrameSize)
		h2_bundle.go#L8310: 	initialSettings = append(initialSettings, http2Setting{ID: http2SettingMaxFrameSize, Val: conf.MaxReadFrameSize})